home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / image / kgsplot.zip / INSTALL.BAT next >
DOS Batch File  |  1996-09-13  |  852b  |  41 lines

  1. echo off
  2. cls
  3. if "%1"=="" goto noDrv
  4. if "%2"=="" goto noDir
  5. cls
  6. choice Install PlotPack 
  7. if errorlevel 2 goto realend
  8. copy plotpack.zip %1
  9. copy pkunzip.exe %1
  10. cd\
  11. md %2
  12. pkunzip -d plotpack.zip \%2
  13. del plotpack.zip
  14. del pkunzip.exe
  15. echo Done!
  16. echo type plot then one of these:
  17. echo SCR9 (16 Color VGA)
  18. echo VGA  (16 Color)
  19. echo MCGA (256 Color LowRes VGA)
  20. echo MONO (3-Shade B&W)
  21. echo Or Just Type plot to Run The Menu.
  22. cd\%2
  23. goto realend
  24. :noDrv
  25. echo Drive Name Missing! 
  26. echo You Typed: %0 %1 %2
  27. echo Should Type: install {Drive} {Directory}
  28. echo Example: install C: plot
  29. goto realend
  30. :noDir
  31. echo Directory Name Missing!    
  32. echo You Typed: %0 %1 %2
  33. echo Should Type: install {Drive} {Directory}
  34. echo Example: install C: plot
  35. goto realend
  36. :NoC
  37. echo No C Drive! Sorry, You Need A Hard Drive.
  38. goto realend
  39. :realend
  40.  
  41.